From 95ea581fba33ef9f64e3ded4370a35964ae954b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Havl=C3=AD=C4=8Dek?= Date: Fri, 31 Dec 2021 16:52:39 +0100 Subject: Fixed ladder placing restrictions --- src/Blocks/BlockLadder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Blocks/BlockLadder.h b/src/Blocks/BlockLadder.h index 06ef2b01c..bab51b2d3 100644 --- a/src/Blocks/BlockLadder.h +++ b/src/Blocks/BlockLadder.h @@ -31,7 +31,7 @@ public: return false; } - return cBlockInfo::IsSolid(a_BlockType); + return cBlockInfo::FullyOccupiesVoxel(a_BlockType); } private: -- cgit v1.2.3